home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Environments / SmallEiffel 0.3.3 / SmallEiffel 68k / lib_test / test_array3.e < prev    next >
Encoding:
Text File  |  1996-06-13  |  411 b   |  28 lines  |  [TEXT/EDIT]

  1. -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C) 
  2. -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
  3. --
  4. class TEST_ARRAY3
  5. --
  6. -- From a bug report of Cyril ADRIAN
  7. --
  8. creation make
  9.  
  10. feature
  11.  
  12.    make is
  13.       local
  14.      ir: INTEGER_REF;
  15.       do
  16.      ir := 3;
  17.      use(<<"titi">>);
  18.      use(<<1>>);
  19.      
  20.       end;
  21.  
  22.    use(t: ARRAY[COMPARABLE]) is
  23.       do
  24.      t.put(t.last,1)
  25.       end;
  26.  
  27. end -- TEST_ARRAY3
  28.